diff options
Diffstat (limited to 'app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx')
| -rw-r--r-- | app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx b/app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx index 985e7fef..baac96ad 100644 --- a/app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx +++ b/app/[lng]/evcp/(evcp)/data-room/[projectId]/files/page.tsx @@ -1,14 +1,17 @@ // app/projects/[projectId]/files/page.tsx import { FileManager } from '@/components/file-manager/FileManager'; -export default function ProjectFilesPage({ +export default async function ProjectFilesPage({ params, }: { params: { projectId: string }; }) { + + const projectId = await params.projectId + return ( <div className="h-full flex flex-col"> - <FileManager projectId={params.projectId} /> + <FileManager projectId={projectId} /> </div> ); }
\ No newline at end of file |
